Pass data into with() query

  • STEP
    
    
                      $posts = Post::with(['author' => function ($q){
                            $q->orderBy('name', 'DESC');
                        }])
                        ->get();